home *** CD-ROM | disk | FTP | other *** search
/ Developer Source 4 / developer source - volume 4.iso / orinf / may96 / hoskf112.gif < prev    next >
Graphics Interchange Format  |  1996-07-26  |  8KB  |  589x287  |  4-bit (12 colors)
Labels: text | screenshot | display | software | computer icon | number | web page | operating system | font
OCR: IstContacts Properties D PostChange Sub PostChange0 REM Force the list to highlight the name of the contact displayed by the Form. IF NOT IsNull ( Value ) THEN DIM rec AS Object DIM rContactID AS Integer rec = frmContact. GetRecordset () rNumRows = rec. GetRowCount ( ) FOR i = 1 TO rNumRows rec. Set CurRow( i ) rContactID = CINT ( rec. GetColVal( "CONTACTID" ) ) IF rContactID = CINT ( Value ) THEN EXIT FOR NEXT i END IF